home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / Sessions / Traut / ZStrings / Source / Win32 / Win32ZStringOverrideTool.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-06-23  |  1.4 KB  |  52 lines

  1. /*==================================================================
  2.     File:        Win32ZStringExtractTool.cpp
  3.  
  4.     Contains:    Tool for creating override libraries for
  5.                 ZStrings on the  Windows
  6.  
  7.     Written by:    Nalini Prakash
  8.  
  9.     Copyright:    2000-2001 Connectix Corporation
  10.     
  11.     This source has been placed into the public domain by
  12.     Connectix Corporation. You have the right to modify, 
  13.     distribute or use this code without any legal limitations
  14.     or finanicial/licensing requirements. Connectix is not 
  15.     liable for any problems that result from the use of this 
  16.     code.
  17.     
  18.     If you have comments, feedback, questions, or would like
  19.     to submit bug fixes or updates to this code, please email
  20.     opensource@connectix.com.
  21. ==================================================================*/
  22.  
  23. #if !defined(AFX_WIN32ZSTRINGOVERRIDETOOL_H__867DDAEE_21B8_4B65_8C00_CC3C76EC5433__INCLUDED_)
  24. #define AFX_WIN32ZSTRINGOVERRIDETOOL_H__867DDAEE_21B8_4B65_8C00_CC3C76EC5433__INCLUDED_
  25.  
  26. #if _MSC_VER > 1000
  27. #pragma once
  28. #endif // _MSC_VER > 1000
  29.  
  30. class Win32ZStringOverrideTool  
  31. {
  32. public:
  33.     Win32ZStringOverrideTool();
  34.  
  35.     virtual 
  36.     ~Win32ZStringOverrideTool();
  37.  
  38.     bool
  39.     CreateOverrideDictionary(
  40.         CString                inSrcFile,
  41.         CString                inDestFile,
  42.         ZToolOptions        inOptions);
  43.  
  44. private:
  45.     static char *    sNewBinaryTitle;
  46.     static char *    sReportFileTitle;
  47. };
  48.  
  49. #endif // !defined(AFX_WIN32ZSTRINGOVERRIDETOOL_H__867DDAEE_21B8_4B65_8C00_CC3C76EC5433__INCLUDED_)
  50.  
  51.  
  52.